home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 October / PCWorld_2006-10_cd.bin / zabezpeceni / eraser / Eraser57Setup.exe / EraserSetup.exe / {app} / Examples / Delphi / Eraser.dpr next >
Text File  |  2002-08-04  |  220b  |  13 lines

  1. Program Project1;
  2. uses
  3.   Forms,
  4.   eraserdll in 'eraserdll.pas',
  5.   form1 in 'form1.pas'  {Form1Cls};
  6.  
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm( TForm1Cls, Form1Cls);
  11.   Application.Run;
  12. end.
  13.